runtime.mSpanList.last (field)

12 uses

	runtime (current package)
		mheap.go#L407: 	last  *mspan // last span in list, or nil if none
		mheap.go#L1706: 	list.last = nil
		mheap.go#L1720: 	if list.last == span {
		mheap.go#L1721: 		list.last = span.prev
		mheap.go#L1746: 		list.last = span
		mheap.go#L1757: 	span.prev = list.last
		mheap.go#L1758: 	if list.last != nil {
		mheap.go#L1760: 		list.last.next = span
		mheap.go#L1765: 	list.last = span
		mheap.go#L1786: 		other.last.next = list.first
		mheap.go#L1787: 		list.first.prev = other.last
		mheap.go#L1791: 	other.first, other.last = nil, nil